@charset "UTF-8";

* {
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250, 250, 250, 0.5);
	z-index: 100;
}

h3 {
	font-size: 3rem;
	font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
	text-align: center;
	margin: 0;
	padding-top: 4rem;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.lines {
  min-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 3px solid transparent;
  border-image: url("https://www.infocrest.co.jp/ykxbdgs5qgq3/uploads/2019/10/blog_m02_2.jpg");
  border-image-slice: 1;
  border-image-repeat: stretch;
}


/* sitemap section */
.map {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
  min-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  line-height: 1.5;
  flex-wrap: wrap;
  z-index: 1;
  overflow: hidden;
}

.map::before {
	content: '';
	position: absolute;
	top: 20%; right: 0;
	width: 25%;
	height: 30%;
	background: linear-gradient( rgba(107, 105, 247, 0.6), rgba(212, 70, 255, 0.6));
	clip-path: square;
  box-shadow: 0px 5px 15px #333;
  border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
	animation: change 5s ease-in-out infinite, animate 10s ease-in-out infinite;
}

.map::after {
	content: '';
	position: absolute;
	top: 0; left: -1%;
	width: 15%;
	height: 20%;
	background: linear-gradient( rgba(212, 70, 255, 0.6), rgba(107, 105, 247, 0.6));
	/*clip-path: circle(10% at 5% 30%);*/
  clip-path: square;
  box-shadow: 0px 5px 15px #333;
  border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
	animation: change 5s ease-in-out infinite, animate 10s ease-in-out infinite;
	animation-delay: -2.5s;
}

@keyframes animate {
	0%,100% {
		transform: translateY(500px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes change {
  0% {
    border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
  }

  25% {
    border-radius: 30% 70% 45% 55% / 78% 30% 70% 22%;
  }

  50% {
    border-radius: 11% 89% 22% 78% / 44% 33% 67% 56%;
  }

  75% {
    border-radius: 38% 62% 70% 30% / 78% 74% 26% 22%;
  }

  100% {
    border-radius: 61% 39% 60% 40% / 27% 65% 35% 73%;
  }
}

.map .card {
	position: relative;
	width: 88%;
	height: 100%;
	margin: 5rem 2rem;
  padding: 2rem;
	box-shadow:  20px 30px 50px rgba(0, 0, 0, 0.6);
	border-radius: 15px;
	background: transparent;
	display: flex;
	justify-content: center;
  flex-direction: row;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
  overflow: hidden;
}

.map-left {
  padding-top: 16px;
  width: 33%;
}

.map-title {
  font-size: 20px;
  font-weight: 700;
  padding: 1rem 0 0 2rem;
}

.map-title span {
  color: rgb(228, 59, 250);
}

.map .map-left .to {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
}

.map .map-left .to:hover {
  color: rgb(228, 59, 250);
}

.map .map-left .top,
.map .map-right .top {
  color: #000;
  font-weight: 500;
  padding-left: 1rem;
}

.map .map-left .top:hover,
.map .map-right .top1:hover {
  color: rgb(228, 59, 250);
}

.map-left ul a {
  line-height: 1.5;
}

.map-left ul li a {
  line-height: 1.1;
  font-weight: 400;
  padding-left: 2rem;
}

.map .map-left .top2 {
  color: #000;
  font-weight: 500;
  padding-left: 1rem;
}

.map-right ul li a {
  line-height: 1.1;
  font-weight: 400;
  padding-left: 1rem;
}

.map li {
  list-style: none;
}

.map a {
  color: #222;
  font-weight: 100;
  text-decoration: none;
}

.map a:hover {
  color: rgb(228, 59, 250);
}

.map-right {
  width: 33%;
}

.map-right .ph {
  position: relative;
  top: 5.5rem;
  padding-bottom: 16px;
}

.map-right .ph i {
  padding-right: 0.5rem;
}


/* footer */
.footer {
	min-width: 100%;
	height: 10rem;
	background: #fff;
}

.footer_container {
	position: relative;
	min-width: 100%;
	background: #fff;
	display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.footer_logo {
	color: #000;
	font-size: 1.125rem;
  line-height: 1rem;
	font-weight: 700;
	text-shadow: 0px 5px 15px #666;
	margin: 0;
	padding: 0;
}

.footer_logo:hover {
	color: rgb(228, 59, 250);
	text-decoration: none;
}

.footer_logo span {
	color: rgb(228, 59, 250);
}

/* SNS link */
.footer_social {
	display: flex;
	column-gap: 1.2rem;
	padding: 0 0 0.5rem;
}

.footer_social-link img {
	display: inline-flex;
	max-width: 36px;
	max-height: 36px;
	color: #fff;
	background-color: #000;
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1.2rem;
	box-shadow: 0px 5px 15px #333;
}

.footer_social-link:hover .line {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(10, 254, 82);
}

.footer_social-link:hover .x {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(67, 247, 238);
}

.footer_social-link:hover .threads {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(254, 243, 255);
}

.footer_social-link:hover .instagram {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.footer .text p {
	font-size: 0.75rem;
	line-height: 0.5rem;
	color: #000;
	font-weight: 300;
	margin-top: 5rem;
  padding-bottom: 1rem;
	text-align: center;
	text-transform: none;
	/*text-shadow: 0px 5px 15px #999;*/
}


/* scrollup */
/*.scrollup {
  position: fixed;
  right: 1rem; bottom: 5%;
  display: flex;
  background-color: #f7f7f7;
  border-radius: 0.25rem;
  padding: 0.25rem;
  opacity: 0.9;
  z-index: 10;
  transition: 0.4s;
  transition-delay: 2s;
  box-shadow: 0px 5px 15px #333;
}

.scrollup_icon {
  color: #000;
  font-size: 1.2rem;
}

.scrollup:hover {
  text-decoration: none;
  opacity: 1;
  box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.scrollup_icon:hover {
  color: rgb(228, 59, 250);
}*/


/* media queries */
@media screen and (max-width: 700px) {
  .map-left {
    width: 50%;
  }
  .map-right {
    width: 50%;
  }
}


@media screen and (max-width: 600px) {
  h3 {
    font-size: 1.5rem;
    padding-top: 2rem;
  }

  .map .card{
    margin: 1rem;
    padding: 0;
  }

  .lines {
    margin: 0;
  }

  .map ul li {
    font-size: 0.8rem;
    margin: 0;
  }

  .map ul li a {
    font-size: 0.8rem;
  }

  .scrollup {
    display: none;
  }

	.footer_social {
		row-gap: 0.8rem;
	}

	.footer_social a i {
		font-size: 0.8rem;
	}

	.footer .text p {
		font-size: 0.25rem;
		line-height: 0.2rem;
	}
}


@media screen and (max-width: 400px) {
  .map .card{
    flex-direction: column;
    margin: 1rem;
  }

  .map-left {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .map-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .map-right .ph {
    top: 0;
  }
}


@media screen and (max-width: 300px) {
	.footer_logo {
		font-size: 1rem;
	}

	.footer_social {
		flex-direction: column;
		row-gap: 0.8rem;
	}

	.footer .text p {
		margin-top: 4rem;
	}
}